home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 3.iso / screensavers / saver25.zip / SOURCE.ZIP / Saver.h < prev    next >
C/C++ Source or Header  |  1997-07-18  |  908b  |  39 lines

  1. // Saver.h : main header file for the SAVER application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"        // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSaverApp:
  12. // See Saver.cpp for the implementation of this class
  13. //
  14.  
  15. class CSaverApp : public CWinApp
  16. {
  17. public:
  18.     CSaverApp();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CSaverApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28.     void DoConfig();
  29.  
  30.     //{{AFX_MSG(CSaverApp)
  31.         // NOTE - the ClassWizard will add and remove member functions here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.